home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / Solitaire / Sources / Klondike / DrawPileDelegate.h < prev    next >
Text File  |  1994-01-03  |  852b  |  31 lines

  1. /* indent:4  tabsize:8  font:fixed-width */
  2.  
  3.  
  4. /*---------------------------------------------------------------------------
  5. | ---------------------------------------------------------------------------
  6. |
  7. |    DrawPileDelegate : Object
  8. |
  9. | ----------------------------------------------------------------------------
  10. \----------------------------------------------------------------------------*/
  11.  
  12. #import <appkit/appkit.h>
  13.  
  14. @interface DrawPileDelegate:Object
  15. {
  16.     id        discardCardPileView;
  17.     id         recycleCardPile;
  18.     int        maxIndex;
  19. }
  20.  
  21. /*----------------------------------------------------------------------------
  22. |
  23. |    CardPileView delegation methods
  24. |
  25. \---------------------------------------------------------------------------*/
  26.  
  27. - setDiscardCardPileView:theView;
  28. - setDrawCardCount:(int)theCount;
  29. - clickedCard:aCard in:drawCardPileView;
  30.  
  31. @end